home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tandy Sensation 2
/
Tandy Sensation II System.iso
/
svga
/
makdisk1.bat
next >
Wrap
DOS Batch File
|
1993-07-31
|
607b
|
27 lines
@echo off
cls
echo This program copies the MS-DOS video drivers onto a diskette.
echo.
echo You will need one high density 3.5-inch diskette. The program
echo formats the diskette and copies the drivers.
echo.
echo To quit this program, press [CTRL]+[C].
echo.
echo Place a high-density 3.5-inch diskette into drive A and press
echo any key.
pause
format a: /f:1440 /u
if errorlevel 1 goto done
xcopy disk1 a:\ /s/e/v
echo.
echo Run INSTALL from the diskette by typing:
echo.
echo A: [ENTER]
echo INSTALL [ENTER]
echo.
echo Follow the instructions on the screen.
echo.
:done